home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #4
/
Amiga Plus CD - 2000 - No. 4.iso
/
Vollversion
/
CamD
/
development
/
examples
/
drum
/
smakefile
< prev
next >
Wrap
Makefile
|
2000-05-15
|
660b
|
26 lines
#=============================================================================
# Makefile for Drum Kit
#=============================================================================
#CFLAGS = gst=sc:gsts/std_headers.gst debug=fullflush ansi \
# unsignedchars nostackcheck ignore=62 ignore=51 ignore=147
#CFLAGS = debug=fullflush ansi \
# unsignedchars nostackcheck multiplecharconstants
CFLAGS = unsignedchars nostackcheck multiplecharconstants
.c.o:
SC $*.c $(CFLAGS) nolink
.a.o:
asm -iinclude: $*
OBJS = drum.o asymbevel.o timer.o arrows.o
OUT = drum
all: $(OUT)
$(OUT): $(OBJS)
SLINK lib:c.o $(OBJS) library lib:sc.lib lib:amiga.lib to $(OUT)